mysql导入数据库错误#1064提示解决方法You have an error in your SQL syntax;
时间 :
2021-07-24
编辑 :admin
SING BTREE 错误。You have an error in your SQL syntax; check the
manual that corresponds to your MySQL server version for the right syntax to use
near ‘USING BTREE,UNIQUE KEY `pkey` (`pkey`) USING BTREE 。。。
解决办法:
UNIQUE KEY `pkey` (“pkey“) USING BTREE ,修改为
UNIQUE KEY `pkey` USING BTREE (“pkey“) ,
即把USING BTREE 放到索引字段前面即可.